home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form Form1
- Caption = "Form1"
- ClientHeight = 5235
- ClientLeft = 1965
- ClientTop = 1170
- ClientWidth = 3030
- LinkTopic = "Form1"
- PaletteMode = 1 'UseZOrder
- ScaleHeight = 5235
- ScaleWidth = 3030
- Begin VB.CommandButton Command1
- Caption = "Add Control"
- Height = 495
- Left = 1680
- TabIndex = 1
- Top = 120
- Width = 1215
- End
- Begin VB.TextBox Text1
- Height = 285
- Index = 0
- Left = 120
- TabIndex = 0
- Text = "Initial Control"
- Top = 120
- Width = 1215
- End
- Attribute VB_Name = "Form1"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub Command1_Click()
- Dim index As Integer
- index = Text1.Count
- Load Text1(index)
- Text1(index).Top = Text1(index - 1).Top + _
- Text1(index - 1).Height + 30
- Text1(index).Text = "Text1(" & Format$(index) & ")"
- Text1(index).Visible = True
- End Sub
-